* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #5f5d5d;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

section .logo img {
    width: 100px;
    
    justify-content: center;
    text-align: center;
}





.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    transition: all 0.4s ease;
}

@media (max-width: 850px) {
   
}
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero span {
  color: #ff0000;
}

.hero p {
  font-size: 1.1rem;
  color: #aaa;
}
section .logo img {
    width: 100px;
    
    justify-content: center;
    text-align: center;
}

.hero a {
  font-size: 1.1rem;
  color: #000000;
  text-decoration: none;
}